home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / midas060 / src / mtypes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-16  |  1.0 KB  |  47 lines

  1. /*      MTYPES.H
  2.  *
  3.  * MIDAS Sound System common type definitions
  4.  *
  5.  * $Id: mtypes.h,v 1.4 1997/01/16 18:41:59 pekangas Exp $
  6.  *
  7.  * Copyright 1996,1997 Housemarque Inc.
  8.  *
  9.  * This file is part of the MIDAS Sound System, and may only be
  10.  * used, modified and distributed under the terms of the MIDAS
  11.  * Sound System license, LICENSE.TXT. By continuing to use,
  12.  * modify or distribute this file you indicate that you have
  13.  * read the license and understand and accept it fully.
  14. */
  15.  
  16. #ifndef __MTYPES_H
  17. #define __MTYPES_H
  18.  
  19. typedef unsigned char uchar;
  20. #ifndef _LINUX_TYPES_H
  21. typedef unsigned short ushort;
  22. typedef unsigned long ulong;
  23. #endif
  24.  
  25. #ifndef NULL
  26. #define NULL 0L
  27. #endif
  28.  
  29. #endif
  30.  
  31.  
  32. /*
  33.  * $Log: mtypes.h,v $
  34.  * Revision 1.4  1997/01/16 18:41:59  pekangas
  35.  * Changed copyright messages to Housemarque
  36.  *
  37.  * Revision 1.3  1996/09/21 17:40:45  jpaana
  38.  * Fixed ushort and ulong warnings on Linux
  39.  *
  40.  * Revision 1.2  1996/05/25 15:49:57  jpaana
  41.  * Nothing really
  42.  *
  43.  * Revision 1.1  1996/05/22 20:49:33  pekangas
  44.  * Initial revision
  45.  *
  46. */
  47.